home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / info-val.izs < prev    next >
Text File  |  2005-09-28  |  2KB  |  121 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Information Validation
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>Test the powers of JavaScript. Watch as JavaScript tells you if information about you is valid or not.  <!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL INFORMATION VALIDATION:
  15.  
  16.    1.  Paste the coding into the HEAD of your HTML document
  17.    2.  Put the last code into the BODY of your HTML document  -->
  18.  
  19. <!--  STEP ONE: Copy this code into the HEAD of your HTML document  -->
  20.  
  21. <HEAD>
  22.  
  23. <SCRIPT LANGUAGE="JavaScript">
  24.  
  25.  
  26.  
  27. <!-- Begin
  28. function validate(){
  29. var digits="0123456789"
  30. var temp
  31. if (document.testform.Name.value=="") {
  32. alert("No Name !")
  33. return false
  34. }
  35. if (document.testform.age.value=="") {
  36. alert("Invalid Age !")
  37. return false
  38. }
  39. for (var i=0;i<document.testform.age.value.length;i++){
  40. temp=document.testform.age.value.substring(i,i+1)
  41. if (digits.indexOf(temp)==-1){
  42. alert("Invalid Age !")
  43. return false
  44.       }
  45.    }
  46. return true
  47. }
  48. // End -->
  49. </SCRIPT>
  50.  
  51. <!--  STEP TWO: Copy this code into the BODY of your HTML document  -->
  52.  
  53. <BODY>
  54.  
  55. <FORM name="testform" onSubmit="return validate()">
  56. Name:<input type="text" size=30 name="Name">
  57. Age:<input type="text" size=3 name="age">
  58. <input type="submit" value="Submit">
  59. </FORM>
  60.  
  61.  
  62.  
  63. <!-- END OF SCRIPT -->
  64. <!/SCRIPT>
  65.  
  66. <!PREVIEW>
  67. <!-- START OF SCRIPT -->
  68.  
  69.  
  70. <!-- HOW TO INSTALL INFORMATION VALIDATION:
  71.  
  72.    1.  Paste the coding into the HEAD of your HTML document
  73.    2.  Put the last code into the BODY of your HTML document  -->
  74.  
  75. <!--  STEP ONE: Copy this code into the HEAD of your HTML document  -->
  76.  
  77. <HEAD>
  78.  
  79. <SCRIPT LANGUAGE="JavaScript">
  80.  
  81.  
  82.  
  83. <!-- Begin
  84. function validate(){
  85. var digits="0123456789"
  86. var temp
  87. if (document.testform.Name.value=="") {
  88. alert("No Name !")
  89. return false
  90. }
  91. if (document.testform.age.value=="") {
  92. alert("Invalid Age !")
  93. return false
  94. }
  95. for (var i=0;i<document.testform.age.value.length;i++){
  96. temp=document.testform.age.value.substring(i,i+1)
  97. if (digits.indexOf(temp)==-1){
  98. alert("Invalid Age !")
  99. return false
  100.       }
  101.    }
  102. return true
  103. }
  104. // End -->
  105. </SCRIPT>
  106.  
  107. <!--  STEP TWO: Copy this code into the BODY of your HTML document  -->
  108.  
  109. <BODY>
  110.  
  111. <FORM name="testform" onSubmit="return validate()">
  112. Name:<input type="text" size=30 name="Name">
  113. Age:<input type="text" size=3 name="age">
  114. <input type="submit" value="Submit">
  115. </FORM>
  116.  
  117. <!-- END OF SCRIPT -->
  118. <!/PREVIEW>
  119.  
  120. <!RELATED>NONE<!/RELATED>
  121.